home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / utils / smore.arc / MORE.MAN next >
Text File  |  1990-01-12  |  2KB  |  65 lines

  1. MORE (1)        ATARI ST programmer's manual        MORE (1)
  2.  
  3. NAME
  4.     more  -  a _✓s_✓i_✓m_✓p_✓l_✓e pager for the ST
  5.  
  6. SYNOPSIS
  7.  
  8.     more [-fhprs] [file ...]
  9.  
  10. DESCRIPTION
  11.  
  12.     More displays text from files or standard input page by page
  13.     on standard output. If no arguments are given, more reads from
  14.     standard input.  Options:
  15.  
  16.     -f    force _✓f_✓i_✓l_✓e_✓ _✓m_✓o_✓d_✓e:  more will not read from stdin, but instead
  17.         display an error message if no file is specified.
  18.     -h    _✓h_✓o_✓l_✓d mode:  more will wait before exiting.
  19.     -p    _✓p_✓r_✓o_✓m_✓p_✓t:  more will display its prompt before displaying
  20.         any lines.
  21.     -r    _✓r_✓a_✓w:  do not highlight characters preceded by "_\b".
  22.     -s    _✓s_✓q_✓u_✓e_✓e_✓z_✓e:  display multiple empty lines as one.
  23.  
  24.     Text is displayed in chunks of 20 lines; more assumes
  25.     that text wraps around after 80 characters.  After each chunk,
  26.     more displays a prompt, allowing following inputs:
  27.  
  28.         <blank>        20 more lines
  29.         <Return>    1 more line
  30.         <digit>        <digit> more lines
  31.         d        10 more lines
  32.         b <Backspace>    back 20 lines (files only)
  33.         /<string>    up to next occurence of <string>
  34.         s        /<last string specified>
  35.         n        next file (if any)
  36.         p        previous file (if any)
  37.         t        top of file (if not standard input)
  38.         h        set hold mode
  39.         !<command>    execute shell command
  40.         q        exit
  41.  
  42.     The prompt also reports the number of source lines shown so far, and,
  43.     for files, the percentage of text displayed.
  44.  
  45. NOTES
  46.  
  47.     More tries to gracefully handle non-printable characters.
  48.  
  49.     The prompt is not displayed via standard output, but via
  50.     BIOS calls; thus, if output is redirected, only source lines
  51.     are redirected.  Uses the VT52 escape sequences for showing
  52.     characters preceded by "_\b" in reverse video.
  53.  
  54. RESTRICTIONS
  55.  
  56.     For moving backwards, more buffers newline positions in a file up to
  57.     a maximum of 10000 lines.
  58.  
  59. FILES
  60.  
  61.     m:\bin\more.ttp
  62.  
  63. AUTHOR
  64.     hafer@infbs
  65.